home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htszlib.h < prev    next >
C/C++ Source or Header  |  2002-11-17  |  2KB  |  71 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Unpacking subroutines using Jean-loup Gailly's Zlib    */
  34. /*       for http compressed data                               */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. #ifndef HTS_DEFZLIB
  40. #define HTS_DEFZLIB
  41.  
  42. #if HTS_USEZLIB
  43.  
  44. int hts_zunpack(char* filename,char* newfile);
  45.  
  46. #define gzopen hts_ptrfunc_gzopen
  47. #define gzread hts_ptrfunc_gzread
  48. #define gzclose hts_ptrfunc_gzclose
  49.  
  50. #ifdef _WIN32
  51. #define ZEXPORT WINAPI
  52. #else
  53. #define ZEXPORT 
  54. #endif
  55.  
  56. typedef void* voidp;
  57. typedef voidp gzFile;
  58. typedef gzFile (ZEXPORT *t_gzopen)(const char *path, const char *mode);
  59. typedef int (ZEXPORT *t_gzread)(gzFile file, voidp buf, unsigned len);
  60. typedef int (ZEXPORT *t_gzclose)(gzFile file);
  61.  
  62. extern int gz_is_available;
  63. extern t_gzopen gzopen;
  64. extern t_gzread gzread;
  65. extern t_gzclose gzclose;
  66.  
  67. #endif 
  68.  
  69. #endif
  70.  
  71.